Alert
Alert Message$
 
Parameters:

    Message$=the message of the alert box
Returns: NONE
 

     Alert opens a simple message box with an "OK" button.
The title for the box can be previously set with .




FACTS:


      * Alert is not asynchronous, so the PlayBasic application will halt while the dialog is open.

  
  
  
; Inlcude the Dialogs library in this program
  #Include "PBDialogs2"
  
  
; Title Of the Dialog
  AlertTitle "Alert!"
  Alert "Hi, how are you?"
  Print "The Title for the alert was: " + GetAlertTitle$()
  Sync
  WaitKey
  
  





 
Related Info: AlertTitle | GetAlertTitle$ | MessageBox | MessageDlg :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com